home *** CD-ROM | disk | FTP | other *** search
/ Aminet 24 / Aminet 24 (1998)(GTI - Schatztruhe)[!][Apr 1998].iso / Aminet / docs / help / aguidehowwrite.lha / amigaguide_how_to_write / miscellaneous / DemoScript < prev    next >
Encoding:
Text File  |  1997-09-16  |  560 b   |  20 lines

  1. ; DemoScript for "How To Write AG"
  2. ; This script is written so as to be compatible (I hope!) with all
  3. ; versions of AmigaDOS so does not have some of the more refined
  4. ; features of AmigaDOS 2.0 and later
  5.  
  6. ECHO "*ec*nPlease enter your name " NOLINE
  7.  
  8. SETENV >Nil: YourName ?
  9.  
  10. ECHO "*ec*nHi " NOLINE
  11. GETENV YourName
  12.  
  13. ECHO "I am a script run from an Amigaguide document"
  14.  
  15. ASK "*nPress RETURN to close this window"
  16.  
  17. DELETE >Nil: Env:yourName ; DELETE used in lieu of UNSETENV so as to
  18.                           ; be compatible with earlier AmigaDOS versions
  19.  
  20. ENDCLI